home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / chinese / njstar12 / printps.doc < prev    next >
Encoding:
Text File  |  1991-08-21  |  2.8 KB  |  68 lines

  1. PRINTPS - Print Chinese GB code to Postscript Printer. Ver 1.2  Aug 20 1991
  2.           Copyright (C) Hongbo Ni 1991. All Rights Reserved.
  3.  
  4. Usage: PRINTPS [options] GBFile PSFile
  5.  
  6. Options: -h/-?   - get help
  7.          -f file - use file as font file (def= CCLIB.24)
  8.          -x nn   - set font matrix to nn x nn, font file= CCLIB.nn (def= 24)
  9.          -s nn   - set Chinese Char size to nn pt  (def= 10 pt)
  10.          -v nn   - set vertical line skip to nn pt (def= 14 pt)
  11.          -p nn   - start printing from page nn (def= 1)
  12.          -e nn   - last/end page to print (def=last page)
  13.          -l/r nn - set left/right margin to nn pt (def=l70 r70)
  14.          -t/b nn - set top/bottom margin to nn pt (def=t70 b70)
  15.          -m nn   - no. of missed QU (section) in symbol table (def= 0)
  16.          -o      - rotate 90 degree (def= NO)
  17.          -1      - print all pages in 1 file [PSFile.PS] (def= 1 file/page)
  18.          -u      - do not print file name and page number (def= Print)
  19.          -n nn   - PS /def if a Chinese Char used nn times in a page(def=2)
  20.             **-----increase nn if PS 'dictfull' error occurs
  21.  
  22. GBFile:  Chinese file name in GB coding.
  23. PSFile:  PostScript output file name, do not supply extension. The PS output is
  24.          one file per page: PSFile.001, PSFile.002, ..., PSFile.PageNo
  25.  
  26. FONT:
  27. =============================================================================
  28. PRINTPS can use any fonts from 16x16 to 64x64. you can specify font name with
  29. option -f. Since CCLIB's symbols are not standard yet, different font file
  30. have different number of missed sections. So you have specify missed section
  31. with -m option. As far as I know, the 24x24 FanTi (CCLIBF.24) and JianTi
  32. (CCLIB.24) fonts in ChTeX1.1 (from crl.nmsu.edu dir:pub/chinese) are provided
  33. with no missing symbol section. The 16x16 fonts packed with NJSTAR have 8
  34. sections missed.
  35.  
  36. To use CCLIB.16 in NJSTAR, use following options:
  37.  
  38.         PRINTPS -x16 -fCCLIB.16 -m8 gbfilename psfile
  39.  
  40. To use CCLIBF.16 in NJSTAR, use following options:
  41.  
  42.         PRINTPS -x16 -fCCLIBF.16 -m8 gbfilename psfile
  43.  
  44. To use CCLIB.24 in ChTeX1.1 use following options:
  45.  
  46.         PRINTPS -x24 -fCCLIB.24 -m0 gbfilename psfile
  47.  
  48. To use CCLIBF.24 in ChTeX1.1 use following options:
  49.  
  50.         PRINTPS -x24 -fCCLIBF.24 -m0 gbfilename psfile
  51.  
  52. If you have a 48x48 font file CCLIB.48, try
  53.  
  54.         PRINTPS -x48 -fCCLIBF.48 -m? gbfilename psfile
  55.  
  56.  
  57.  
  58. COMMON PROBLEMS:
  59. ================
  60.  
  61. (1). sometime when print to postscript printer, you get 'dictfull' error.
  62.      Solution: try option -n with -n3, -n4 ...
  63.  
  64. (2). sometime when print to postscript printer, you get 'VMERROR'!
  65.           WHY: laser printer RAM is full. too many chars on one page.
  66.      Solution: increase left/right margin with option -l100 -r100
  67.  
  68.